home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1997 December / PC Pro December 1997 CD-Rom coverdisc.iso / symantec / dbAnywh / JAVA.BIN / CLASSES.ZIP / sun / net / www / protocol / verbatim / Handler.class (.txt) next >
Encoding:
Java Class File  |  1996-12-14  |  499 b   |  13 lines

  1. package sun.net.www.protocol.verbatim;
  2.  
  3. import java.io.IOException;
  4. import java.net.URL;
  5. import java.net.URLConnection;
  6. import java.net.URLStreamHandler;
  7.  
  8. public class Handler extends URLStreamHandler {
  9.    public URLConnection openConnection(URL var1) throws IOException {
  10.       return new VerbatimConnection(var1);
  11.    }
  12. }
  13.